All Questions
Tagged with circular-dependencydependency-inversion
2 questions
3votes
1answer
174views
How to structure python modules/packages according to dependecy inversion
If I am working on a project, say it has this file structure: car/ body/ __init__.py doors.py bonnet.py engine/ cyclinderhead/ __init__.py pistons.py ...
0votes
3answers
277views
Circular dependency in composition root
I have a MDI MyMDIWinForm that needs an instance of IGUIErrorHanlder for error handling, At the same time IGUIErrorHanlder depends on the MDI MyMDIWinForm for having a place from where to launch pop-...